Returns the value of a DICOM element
Syntax
Visual Basic (Declaration) | |
---|
Overloads Public Function GetValue(Of T)( _
ByVal tag As Long, _
ByVal defaultValue As T _
) As T |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DicomDataSet
Dim tag As Long
Dim defaultValue As T
Dim value As T
value = instance.GetValue(Of T)(tag, defaultValue)
|
Parameters
- tag
- tag of the item to find.
- defaultValue
- a value of type T that is returned if the actual value cannot be retrieved.
Type Parameters
- T
- specifies the type of the value to return
Return Value
a value of type T that is the value of the DICOM element
Example
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also